January 04, 2025
v3 Delete Whatsapp Sender
Description:
Delete a special whatsapp senders in the account.
URI:
https://api.multitel.net/v3/wa_delete_sender/${sender_id}
Methods:
POST
Sample Output:
{ "status": { "code": 200, "msg": "" }, "response": [] }
Sample Code:
$curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.multitel.net/v3/wa_delete_sender/${sender_id}', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_HTTPHEADER => array( 'Content-Type: application/json', 'Accept: application/json', 'Authorization: Basic YWRtaW46Vnc0OXBYNk', ), )); $response = curl_exec($curl); curl_close($curl); echo $response;